home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970326-19970626 / 000080_news@columbia.edu _Thu Apr 17 16:57:43 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id QAA27615
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Thu, 17 Apr 1997 16:57:43 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id QAA22096
  7.     for kermit.misc@watsun; Thu, 17 Apr 1997 16:57:41 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: z-modem, file transfer
  12. Date: 17 Apr 1997 20:57:31 GMT
  13. Organization: Columbia University
  14. Lines: 46
  15. Message-ID: <5j62rr$f97$1@apakabar.cc.columbia.edu>
  16. References: <3354A3BB.CE791FF1@netscape.com>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:6896
  19.  
  20. In article <3354A3BB.CE791FF1@netscape.com>,
  21. Kathy Beeskow  <kbeeskow@netscape.com> wrote:
  22. : I'm trying to use Kermit to receive a file from my company's bank.
  23. :
  24. : I get into Kermit and enter
  25. :  >set modem type usrobotics
  26. :  >set line /dev/ttyc
  27. :  >dial 9,xxxxxxx
  28. :
  29. So it looks like you are using C-Kermit 6.0 on UNIX, which is current.
  30.  
  31. : The bank prompts me to enter a password which I do.
  32. : The bank tell me to be ready to receive.
  33. : But then while the bank is trying to send me the file it times out.
  34. : Do I have to enter 'receive' in the command prompts before I dial out?
  35. No, not *before* you dial out.
  36.  
  37. As explained in the manual, "Using C-Kermit", you have two choices for
  38. how to handle downloads -- manual and automatic:
  39.  
  40.  1. Escape back to the prompt by typing Ctrl-Backslash and then the
  41.     letter C, and then give a RECEIVE command.  Or:
  42.  
  43.  2. Before making the connection, tell C-Kermit to:
  44.  
  45.        set terminal autodownload
  46.  
  47.     and then it detects that the other side has started a download and
  48.     automatically go into receive mode.
  49.  
  50. : If you have any insights I would greatly appreciate the feedback.
  51. You can find out about the manual and how to get it at:
  52.  
  53.   http://www.columbia.edu/kermit/ck60.html
  54.  
  55. All of this assumes you are using Kermit protocol, not Zmodem protocol as
  56. indicated in the subject of your posting.  If you need to use Zmodem
  57. protocol, all the same advice applies, except you must find and configure a
  58. Zmodem file-transfer program as an external protocol to C-Kermit.  This is
  59. explained in Chapter 14 of the manual (the new second edition; this material
  60. is not in the first edition).
  61.  
  62. - Frank